home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue66
/
SQLComp
/
DMSQLIBXReg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-09-19
|
196 b
|
18 lines
unit DMSQLIBXReg;
interface
procedure Register;
implementation
uses
Classes, DMSQLIBX;
procedure Register;
begin
RegisterComponents('DMSQL', [TDMSQLIBQuery]);
end;
end.